home *** CD-ROM | disk | FTP | other *** search
/ Interactive Media Design Review 1999 / Interactive Media Design Review 1999.iso / pc / Demos / Herois / Codigo.Cst / 00006_Script_FrameIntroducaoHelp < prev    next >
Text File  |  1999-03-19  |  375b  |  20 lines

  1. on exitFrame
  2.   go the frame
  3. end
  4.  
  5. on getBehaivorDescription
  6.   return "Pause na saida do frame, chamando #idleSprite para todos sprites durante #idle"
  7. end
  8.  
  9. on idle
  10.   global gMustUpdate
  11.   set gMustUpdate to false
  12.   sendAllSprites(#idleSprite)
  13.   if gMustUpdate then updateStage
  14. end
  15.  
  16. on mouseUp
  17.   sendAllSprites(#cleanSprite)
  18.   updateStage
  19.   go frame "Menu"
  20. end